body {
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    color: rgba(0,0,0,.7);
    font-size: 18px;
    line-height: 1.7em;
    font-family: 'Amiri',serif, Helvetica, sans-serif;
}
.sbody {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 20px;
    background-color: white;
    border: 1px solid #bfbdbd;
}
.item_header{
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--folder-bg);
    /* border: 1px solid #bfbdbd; */
    color: var(--folder-text);
}
.main_img{
    width: 35%;
    margin: 0% 32.5%;
    max-width: 300px;
}
.item_information{
    font-size: 21px;
    width: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(49 144 198);
    border: 1px solid #bfbdbd;
    color: white;
}
.input_fields {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}
.half_field {
    width: 50%;
    /* padding: 15px 0px; */
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.full_field{
    width: 100%;
    padding: 0px 15px;
    display: flex;
    flex-wrap: nowrap;
}
.field_box {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 67px;
    padding: 15px;
        color: black;
}
.field_pic_name {
    height: 48px;
    display: flex;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    width: auto;
}
.Value_field_div{
    width: 50%;
}
.value_field {
    height: 48px;
    font: 15px/24px 'Cairo', sans-serif;
    text-align: right;
    width: 100%;
    border-color: #7ba9ee;
    border-width: 2px;
    
}
.output_fields {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
}

.control_field{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.error_field{
    width: 90%;
    padding: 5%;
    margin: 5%;
    background-color: #e46161;
    color: #721c24;
    font-size: 18px;
}
@media (min-width: 800px){
    body{
        margin-left: 10%;
        margin-right: 10%;
        margin-top: 2%;
        background-color: #f2f1ec;
    }
}

@media (max-width: 700px){
    .input_fields {
        padding: 10px 0px;
        width: 90%;
        margin: 0% 5%;
    }
    .half_field {
        width: 100%;
    }
    .output_fields {
        padding: 10px 0px;
        width: 90%;
        margin: 0% 5%;
    }
    .field_box{
        padding: 0px;
        justify-content: space-between;
    }
    .full_field{
        flex-wrap: wrap;
    }
    .item_header{
        font-size: 15px;
    }
    .item_information{
        font-size: 15px;
    }
    .main_img{
        width: 40%;
        margin: 0% 30%;
    }
}